 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	background-color: gray;
	padding-top: 40px;
}
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #343a40; /* Navbar uyumu */
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  z-index: 1050;
  animation: fadeInScale 0.6s ease-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Canli görünüm animasyonu */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Navbar'a yer açmak için body'ye üst padding */
body {
  padding-top: 40px; /* announce bar yüksekligi kadar */
}


/* HEADER */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, gray, white); /* Ä°ki renkli geÃ§iÅŸ */
    z-index: 1000;
    padding: 10px 30px;
}

.navbar a {
    color:darkgray!important;
    font-size: 1.2rem;
    padding: 10px;
    text-decoration: none;
}

.navbar a:hover {
    color: #ffffff;
   
    transition: background-color 0.3s ease;
	background-color: transparent !important; /* Arkaplan rengini kaldir */
}

.navbar-toggler {
    border-color: gray!important;
}

.navbar-toggler-icon {
    background-color: gray!important;
}

.container {
    max-width: 1200px; /* MasaÃ¼stÃ¼nde geniÅŸliÄŸi sÄ±nÄ±rlÄ±yoruz */
    margin: 0 auto;
}
@media only screen and (max-width:760px){
	
	.navbar{
		background: linear-gradient(to right, gray, white); 
		position: fixed;
		top: 0; left: 0; width: 100%;
	    
	}
}



.navbar-brand{
	font-weight: 600;
	
}
.navbar li{
	margin-left: 10px;
}

.navbar li a img{
	opacity: 0.6;
	border-radius: 50%;
}

.navbar li a{
	font-size: 15px;
	color:white!important;
	font-weight: 400;
	letter-spacing: 1px;
	transition: 0.2s;
}
.navbar .navbar-nav .active>a,
.navbar .navbar-nav a:hover{
	color: black!important;
}

.navbar nav a img {
	border-radius: 50%;
	opacity: 0.6;
}

.navbar nav a span{
	color: darkgray!important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-right: auto; /* SaÄŸa yaslanmasÄ±nÄ± saÄŸlÄ±yoruz */
}

@media only screen and (max-width:768px){
	.bolum1{
		height: 850px;
	}
	h2{
		margin-top: 35px;
	}
	
}
.language-buttons {
      position: fixed;
      top: 20px;
      right: 20px;
	padding-top: 40px;
    }
    /* Dil seÃ§imi dÃ¼ÄŸmelerinin boyutunu kÃ¼Ã§Ã¼lt */
    .language-buttons .btn {
      font-size: 12px;
      padding: 5px 10px;
		color: white!important;
    }
    /* Dil seÃ§imi dÃ¼ÄŸmelerindeki resimlerin boyutunu ayarla */
    .language-buttons img {
      width: 40px;
      height: 40px;
    }
@media (max-width: 768px) {
  .language-buttons {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px; /* Ä°stenilen bir boÅŸluk deÄŸeri verebilirsiniz */
  }
	}
.navbar .navbar-nav .language-buttons .btn  img:hover{
	transform: scale(1.4);
	background: rgba(80,80,80,0.3);
	border-radius: 35px;
	z-index: 2;
	transition: 0.9s;
	cursor: pointer;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    overflow: hidden;
    text-align: center;
    position: relative;
    padding: 20px;
	background-color: #BBBBBB;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; /* YÃ¼kseklik tÃ¼m ekran boyutunda olacak */
    background-image: url('AdsÄ±z tasarÄ±m (1).png');
    background-size: cover; /* Arka planÄ±n tamamen alanÄ± kaplamasÄ±nÄ± saÄŸlar */
    background-position: center; /* Resmin ortalanmasÄ±nÄ± saÄŸlar */
    background-repeat: no-repeat; /* Tekrar etmemesini saÄŸlar */
}


.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* TaÅŸmayÄ± Ã¶nler */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 10px;
}




/* Mobil uyumlu */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .hero-content {
        width: 90%;
        padding: 15px;
    }
}
/* Mobil MenÃ¼ Stili */
.mobile-menu {
    position: absolute;
    top: 60px; /* Header'Ä±n hemen altÄ±na yerleÅŸtiriyoruz */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000; /* MenÃ¼yÃ¼ en Ã¼ste Ã§Ä±karÄ±yoruz */
}

.mobile-menu.active {
    display: flex;
}

/* Toggle Button */
.menu-toggle {
    position: relative;
    z-index: 1100; /* Butonu her ÅŸeyin Ã¼stÃ¼ne Ã§Ä±karÄ±yoruz */
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 2; /* MenÃ¼ her zaman Ã¼stte kalacak */
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* KeÅŸfet Butonu Stil */
.btn-secondary {
    background-color: #f1c40f; /* Butonun arka plan rengi */
    color: #fff; /* Metin rengi */
    padding: 12px 25px; /* Buton iÃ§indeki boÅŸluklar */
    border: none; /* KenarlÄ±k yok */
    border-radius: 50px; /* Yuvarlak kÃ¶ÅŸeler */
    font-size: 16px; /* YazÄ± boyutu */
    font-weight: bold; /* YazÄ±yÄ± kalÄ±n yap */
    text-transform: uppercase; /* YazÄ±yÄ± bÃ¼yÃ¼k harfe dÃ¶nÃ¼ÅŸtÃ¼r */
    transition: all 0.3s ease; /* Hover efekti iÃ§in geÃ§iÅŸ */
    text-decoration: none; /* Linkin altÄ± Ã§izili olmasÄ±n */
    display: inline-block; /* Butonun bir satÄ±rda dÃ¼zgÃ¼n durmasÄ± */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gÃ¶lge efekti */
}

/* Buton Hover Efekti */
.btn-secondary:hover {
    background-color: #e67e22; /* Hover durumunda arka plan rengi deÄŸiÅŸir */
    color: #fff; /* Metin rengi deÄŸiÅŸmez */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Hover sÄ±rasÄ±nda gÃ¶lge daha belirgin olur */
    transform: translateY(-4px); /* Hover sÄ±rasÄ±nda buton hafif yukarÄ± kayar */
}

/* Buton Mobil UyumluluÄŸu */
@media (max-width: 768px) {
    .btn-secondary {
        padding: 10px 20px; /* Mobilde butonun boyutunu kÃ¼Ã§Ã¼lt */
        font-size: 14px; /* YazÄ± boyutunu mobilde kÃ¼Ã§Ã¼lt */
    }
}

/* VIDEO SLIDER */
 .video-slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* Videolar disari tasmasin */
}

.video-container {
    display: flex; /* Videolar yatayda siralanacak */
    transition: transform 1s ease-in-out; /* Kaydirma animasyonu */
}
.video-slider h2{
	text-align: center;
	color: #535353;
}
.video-container iframe {
    min-width: 100%;  /* Videolar %100 genislikte olacak sekilde */
    flex-shrink: 0;    /* Videolar küçülmesin */
    margin-right: 10px; /* Videolar arasina bosluk ekleyelim */
	height: 315px;
}

/* Önceki ve sonraki butonlar */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

/* COLLECTIONS */
/* EtkileÅŸimli Collections BaÅŸlÄ±ÄŸÄ± */
.collection-container {
     display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* TÃ¼m item'larÄ± aynÄ± yÃ¼kseklikte tutar */
}
.collections-title {
    text-decoration: none; /* BaÄŸlantÄ±nÄ±n altÄ±nÄ± Ã§izme */
    color: #333; /* BaÅŸlÄ±k rengi */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease; /* Efekt iÃ§in geÃ§iÅŸ */
	text-align: center;
    display: block; /* BloÄŸa Ã§evirdik, ortalanabilmesi iÃ§in */
    margin: 0 auto; /* Yatayda ortalamak iÃ§in */
}

.collections-title h2 {
    margin: 0;
	margin-bottom: 15px;
	color: darkgrey;
	margin-top: 25px;
	margin-bottom: 25px;
	
}

.collections-title:hover {
    color:aliceblue; /* Hover durumunda renk deÄŸiÅŸimi */
    transform: translateY(-5px); /* Hover durumunda baÅŸlÄ±k yukarÄ± kayar */
}

/* Koleksiyon BaÅŸlÄ±klarÄ± */
.collection-title {
    text-align: center; /* Metni yatay olarak ortalar */
    font-size: 5rem; /* BaÅŸlÄ±k boyutu */
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: black;
    transition: color 0.3s ease;
    margin-bottom: 20px; /* Resimle arasÄ±na mesafe koyar */
	text-decoration: none;
}

.collection-title h3 {
    margin: 0; /* BaÅŸlÄ±k margin'ini sÄ±fÄ±rla */
	font-size: 1rem;
	text-align: left;
	  font-family: 'Roboto', sans-serif; /* Google Fonts'tan Roboto fontu */
	font-weight: bold;
	color: #6D6D6D;
	margin-top: 15px;
}

.collection-title:hover {
    color:black;/* Hover durumunda renk deÄŸiÅŸimi */
    transform: translateY(-5px); /* Hover durumunda baÅŸlÄ±k yukarÄ± kayar */
}

/* Koleksiyon Resmi */
.collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* BaÅŸlÄ±k ve img arasÄ±ndaki boÅŸluÄŸu eÅŸitler */
    height: 100%; /* TÃ¼m Ã¶ÄŸeleri aynÄ± yÃ¼kseklikte tutar */
}



.collection-item img {
    width: 100%; /* Resmi tÃ¼m geniÅŸlikte gÃ¶ster */
    height: auto;
    transition: transform 0.3s ease; /* Efekt iÃ§in geÃ§iÅŸ */
	border-radius: 10px;
	 z-index: 1;
	 object-fit: cover; /* Resimlerin Ã¶lÃ§eklenmesini saÄŸlar */
    flex-grow: 1; /* Resmin kalan alanÄ± kaplamasÄ±nÄ± saÄŸlar */
}

.collection-item:hover img {
    transform: scale(1.1);
	 z-index: 2;/* Hover durumunda resmin bÃ¼yÃ¼mesi */
}

/* Responsive Ã–zellikler */
@media (max-width: 767px) {
    .collections-title {
        font-size: 1.5rem; /* Mobilde baÅŸlÄ±k boyutunu kÃ¼Ã§Ã¼lt */
    }

    .collection-item img {
        width: 100%; /* Resimlerin tam geniÅŸlikte gÃ¶rÃ¼nmesini saÄŸla */
    }
}

@media screen and (max-width: 768px) {
    /* MENU */
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #333;
        text-align: center;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 10px;
    }

    /* VIDEO SLIDER */
    .video-container {
        width: 100%;
    }
}
.featured-products {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

.featured-products h2 {
    font-size: 2rem;
    margin-bottom: 20px;
	color:darkgrey;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card img {
     width: 100%;  /* Container geniÅŸliÄŸine tam oturur */
    height: auto; /* Oran korunur */
    object-fit: cover; /* GÃ¶rÃ¼ntÃ¼nÃ¼n taÅŸmasÄ±nÄ± Ã¶nler, kÄ±rpma yapabilir */
    max-height: 250px; /* Maksimum yÃ¼kseklik belirleyerek aÅŸÄ±rÄ± bÃ¼yÃ¼k resimleri sÄ±nÄ±rla */
    border-radius: 8px; /* KÃ¶ÅŸeleri hafif yuvarlat */
}

.product-card h3 {
    margin: 15px 0 10px;
    font-size: 1.5rem;
}

.product-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e67e22;
    display: block;
    margin-bottom: 15px;
}

.product-card .btn {
    background: #e67e22;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-card .btn:hover {
    background: #d35400;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Mobil uyumlu */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .product-card img {
        height: 150px;
    }
}
.blog-section {
    text-align: center;
    padding: 50px 20px;
    background: #f8f8f8;
}

.blog-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
	color: darkgray;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card img {
     width: 100%;  /* Container geniÅŸliÄŸine tam oturur */
    height: auto; /* Oran korunur */
    object-fit: cover; /* GÃ¶rÃ¼ntÃ¼nÃ¼n taÅŸmasÄ±nÄ± Ã¶nler, kÄ±rpma yapabilir */
    max-height: 250px; /* Maksimum yÃ¼kseklik belirleyerek aÅŸÄ±rÄ± bÃ¼yÃ¼k resimleri sÄ±nÄ±rla */
    border-radius: 8px; /* KÃ¶ÅŸeleri hafif yuvarlat */
}


.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.blog-content .read-more {
    text-decoration: none;
    color: #e67e22;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-content .read-more:hover {
    color: #d35400;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Mobil Uyumlu */
@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .blog-card img {
        height: 180px;
    }
}

footer {
    background:#D8D8D8!important;
    color: white;
    padding: 20px 0;
}

.footer-logo img {
    width: 150px;
}

.sosyalmedya {
    display: flex;
    gap: 15px;
}

.sosyalmedya li {
    list-style: none;
}

.sosyalmedya a {
    color: white;
    font-size: 24px;
    transition: 0.3s;
}

.sosyalmedya a:hover {
    color: #ff6600;
}

.footer-links li {
    margin: 5px 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6600;
}
#yukari{
	height: 45px;
	width: 45px;
	position: fixed;
	bottom: 65px;
	right: 100px;
	background: url("img/upper arrow.png");
	background-size: cover;
	display: none;
	transition-duration: 0.5s;
}

.whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25d366; /* WhatsApp green color */
            color: #fff;
            border: none;
            padding: 10px;
            border-radius: 25%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .whatsapp-button:hover {
            background-color: #128C7E; /* Darker shade on hover */
        }